4ee293d3e5ee7b78f209332b53af247f5cbd0b50,opennms-webapp/src/main/java/org/opennms/dashboard/client/SurveillanceDashlet.java,SurveillanceView,populate,#SurveillanceData#,86
Before Change
// now set the data
for(int col = 0; col < data.getColumnCount(); col++) {
m_grid.setText(row+1, col+1, data.getCell(row, col));
}
}
After Change
// now set the data
for(int col = 0; col < data.getColumnCount(); col++) {
SurveillanceIntersection cell = data.getCell(row, col);
m_grid.setText(row+1, col+1, cell.getData());
m_grid.getCellFormatter().setStyleName(row+1, col+1, cell.getStatus());
}